runtime.p.runqtail (field)
18 uses
runtime (current package)
proc.go#L3992: if mp.spinning && (pp.runnext != 0 || pp.runqhead != pp.runqtail) {
proc.go#L5611: for pp.runqhead != pp.runqtail {
proc.go#L5613: pp.runqtail--
proc.go#L5614: gp := pp.runq[pp.runqtail%uint32(len(pp.runq))].ptr()
proc.go#L6351: t := atomic.Load(&pp.runqtail)
proc.go#L6673: tail := atomic.Load(&pp.runqtail)
proc.go#L6675: if tail == atomic.Load(&pp.runqtail) {
proc.go#L6728: t := pp.runqtail
proc.go#L6731: atomic.StoreRel(&pp.runqtail, t+1) // store-release, makes the item available for consumption
proc.go#L6788: t := pp.runqtail
proc.go#L6800: return (pp.runqtail + o) % uint32(len(pp.runq))
proc.go#L6808: atomic.StoreRel(&pp.runqtail, t)
proc.go#L6832: t := pp.runqtail
proc.go#L6854: t := pp.runqtail
proc.go#L6889: t := atomic.LoadAcq(&pp.runqtail) // load-acquire, synchronize with the producer
proc.go#L6942: t := pp.runqtail
proc.go#L6956: atomic.StoreRel(&pp.runqtail, t+n) // store-release, makes the item available for consumption
runtime2.go#L671: runqtail uint32
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |